home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- repeat with x = 20 to 26
- set the visible of sprite x to 1
- end repeat
- set x to the currentSpriteNum
- puppetSprite(x, 1)
- set the width of sprite x to 150
- set the height of sprite x to 162
- end
-
- on mouseLeave
- repeat with x = 21 to 26
- if rollOver(x) then
- exit
- end if
- end repeat
- repeat with x = 20 to 26
- set the visible of sprite x to 0
- end repeat
- puppetSprite(the currentSpriteNum, 0)
- end
-